.contact-container {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container h1 {
    color: #000000;
    font-size: 3.5rem;
    text-decoration: underline;
    text-decoration-color: #4a0638;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
    text-align: center;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.office-info {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.office-info h2 {
    color: #4a0638;
    margin-top: 0;
    margin-bottom: 20px;
}

.office-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 15px;
}

.office-info strong {
    color: #4a0638;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #fdf2f2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
    display: block;
}

.enquiry-form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.enquiry-form h2 {
    color: #4a0638;
    margin-top: 0;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    background-color: #fdfdfd;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a0638;
    box-shadow: 0 0 5px rgba(74, 6, 56, 0.2);
}

.submit-btn {
    background-color: #4a0638;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #6b0951;
}

.submit-btn:active {
    background-color: #9d4f7f;
}

.submit-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.form-submit-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4a0638;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-email-link {
    color: #4a0638;
    text-decoration: none;
}

.visually-hidden-honeypot {
    position: absolute;
    left: -9999px;
}

#form-response {
    display: none;
    margin-top: 15px;
    font-weight: bold;
}
